29cfda7880cfc2594347579693bf33687c739d3c,app/src/main/java/xyz/yluo/ruisiapp/View/MyBottomTab.java,MyBottomTab,init,#,63

Before Change


        COLOR_UNSELECT = ContextCompat.getColor(context,R.color.colorDisableHintIcon);
        SIZE_PADDING_TOP = DimmenUtils.dip2px(context,SIZE_PADDING_TOP);
        SIZE_PADDING_BOTTOM = DimmenUtils.dip2px(context,SIZE_PADDING_BOTTOM);
        SIZE_PADDING_LR = DimmenUtils.dip2px(context,SIZE_PADDING_LR);
        SIZE_ICON = DimmenUtils.dip2px(context,SIZE_ICON);
        int[] attrs = new int[]{R.attr.selectableItemBackgroundBorderless};
        TypedArray typedArray = context.obtainStyledAttributes(attrs);

After Change


        COLOR_SELECT = ContextCompat.getColor(context, R.color.colorPrimary);
        COLOR_UNSELECT = ContextCompat.getColor(context,R.color.colorDisableHintIcon);
        PADDING_8 = DimmenUtils.dip2px(context, PADDING_8);
        PADDING_12 = DimmenUtils.dip2px(context, PADDING_12);
        SIZE_ICON = DimmenUtils.dip2px(context,SIZE_ICON);
        int[] attrs = new int[]{R.attr.selectableItemBackgroundBorderless};
        TypedArray typedArray = context.obtainStyledAttributes(attrs);